home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getpagesize.c,v < prev    next >
Text File  |  1988-06-19  |  981b  |  66 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.26;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getpagesize.c --
  26.  *
  27.  *    Procedure to map from Unix getpagesize system call to Sprite.
  28.  *
  29.  * Copyright 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: getpagesize.c,v 1.1 87/04/27 15:25:35 brent Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38.  
  39. #include "compatInt.h"
  40.  
  41.  
  42. /*
  43.  *----------------------------------------------------------------------
  44.  *
  45.  * getpagesize --
  46.  *
  47.  *    Procedure to map Unix getpagesize call to Vm_GetPageSize. 
  48.  *
  49.  * Results:
  50.  *    The page size used by Sprite is returned.
  51.  *
  52.  * Side effects:
  53.  *    None.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57.  
  58. int
  59. getpagesize()
  60. {
  61.     int size;
  62.     (void)Vm_PageSize(&size);
  63.     return(size);
  64. }
  65. @
  66.